/* ------------ Allgemeine Formatierung -------------- */
* {
  margin: 0px;
  padding: 0px;
}
h2 {
  font-size: 35px;
  color: darkblue;
}
h3 {
  font-family: impact, arial, sans-serif;
  font-size: 28px;
  color: darkblue;
  text-transform: uppercase;
  font-weight: normal;
}
h4 {
  font-family: arial, sans-serif;
  font-size: 18px;
  color: lightblue;
  text-transform: uppercase;
  font-weight: bold;
}
h5 {
  font-family: arial, sans-serif;
  font-size: 15px;
  color: lightblue;
  text-transform: uppercase;
  font-weight: bold;
}
#reiseplaner {
  font-size: 50px;
  padding: 20px;
  border: 2px solid darkblue;
  border-radius: 25px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.5);
}
#obenunten {
  float: right;
  text-decoration: none;
  font-size: 40px;
  padding-right: 10px;
  color: darkblue;
}
a {
  text-decoration: none;
  color: rgb(33, 111, 147);
}
a:hover {
  color: rgb(54, 173, 233);
}
.menu {
  position: absolute;
  right: 20px;
  top: 15px;
  padding-right: 30px;
}
.menu-button {
  background: #fff;
  color: darkblue;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  border: 1px solid white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-button:hover {
  background: lightblue;
}
.menu-content {
  display: none;
  position: absolute;
  top: 50px;
  right: 20px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.menu-content a {
  display: block;
  padding: 10px 20px;
  color: darkblue;
  text-decoration: none;
}
.menu-content a:hover {
  background: lightblue;
}
nav {
  margin-top: 60px;
  text-align: center;
  background: #f1f1f1;
  padding: 10px;
}
button {
  margin: 10px;
}
article {
  margin: 60px;
  color: black;
  line-height: 22px;
}
#articleüberschrift {
  margin: 0px auto;
  padding: 40px;
  text-align: center;
  color: darkblue;
  font-size: 20px;
}
article img {
  width: 100%;
  border: 1px solid darkblue;
  border-radius: 25px;
  box-shadow: 0px 4px 6px rgba(31, 29, 29, 0.1);
}
article h3 {
  font-size: 38px;
  color: black;
  font-family: sans-serif, Impact, 'Arial Narrow Bold';
}
article h4 {
  font-size: 22px;
  color: black;
  font-family: sans-serif, Impact, 'Arial Narrow Bold';
  padding: 30px 20px;
}
article ul {
  margin-left: 100px;
}
article li {
  font-weight: bold;
}
#uhrzeiten {
  font-weight: normal;
  margin-left: 14px;
}
.faq-container {
  margin: 15px;
  background: rgba(228, 225, 225, 0.461);
  padding: 20px;
  border-radius: 10px;
}
.faq-question {
  display: flex;
  justify-content: space-between; 
  width: 100%;
  cursor: pointer;
  color: rgb(33, 119, 147);
  font-weight: bold;
  font-size: 24px;
  padding: 3px 0px;
}
.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  display: block;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-answer {
  display: none;
  padding: 10px;
  font-size: 17px;
  line-height: 30px;
  color: black;
  margin-bottom: 20px;
}
.faq-item.open .faq-answer {
  display: inline-block;
}
.arrow {
  transition: transform 0.3s;
}
.faq-item.open .arrow {
  transform: rotate(180deg);
}
.faq-container li {
  margin: 0px 20px;
  padding: 2px;
}
.faq-answer p {
  display: inline;
  font-weight: bold;
}
.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 900px;
  margin: 30px auto;
}
.box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 4px 5px 10px rgb(61, 155, 231);
  max-width: 400px;
}
.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.content {
  flex-grow: 1;
}
.title {
  font-weight: bold;
  margin-bottom: 5px;
}
.link {
  color: #005effec;
  text-decoration: none;
  font-weight: bold;
}
/* ------------ Allgemeine Klassen ------------------- */
.clearing{
  clear: both;
}
html {
  scroll-behavior: smooth;
}
/* ---------------------- BOXEN ----------------------- */
body {
  font-family: Arial, Calibri, sans-serif;
  font-size: 15px;
  color: #585857;
  margin: 0;
}
header {
  height: 50px;
  padding: 20px;
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
header.hidden {
  transform: translateY(-100%);
}
header img {
  height: 50px;
  float: left;
  padding-right: 8px;
}
main {
  margin-top: 100px;
  margin-bottom: 100px;
  background-color: rgba(255, 255, 255, 0);
}
footer {
  background-color: #449fca;
  padding: 10px;
  min-height: 150px;
  font-size: 16px;
  color: white;
  border-top: 20px solid lightblue;
  border-bottom: 20px solid lightblue;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
.footer-section {
  flex: 1;
  padding: 10px;
}
.footer-section h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-section p {
  margin: 5px 0;
  font-size: 20px;
  padding: 2px;
}
footer a {
  color: white;
}